home *** CD-ROM | disk | FTP | other *** search
- /*
- A basic extension of the java.awt.Window class
- */
-
- import java.awt.*;
-
- public class Window1 extends Window {
-
- public Window1(Frame parent) {
-
- super(parent);
-
- //{{INIT_CONTROLS
- setLayout(null);
- // addNotify();
- resize(insets().left + insets().right + 430,insets().top + insets().bottom + 270);
- //}}
- }
-
- public boolean handleEvent(Event event) {
- return super.handleEvent(event);
- }
-
- //{{DECLARE_CONTROLS
- //}}
- }
-